how to make my jupyter prin full array

48

how to make my jupyter prin full array -

import sys
import numpy
numpy.set_printoptions(threshold=sys.maxsize)

how do i print the entire array pthon jupyter -

with numpy.printoptions(threshold=numpy.inf):
    print(arr)

numpy print full array to srdout -

numpy.savetxt(sys.stdout, numpy.arange(10000))

Comments

Submit
0 Comments